home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / Visual Cafe Pro v1.0 / TUTORIAL.BIN / SQLServerConnException.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-01-30  |  888 b   |  22 lines

  1. package symantec.itools.db.net;
  2.  
  3. import symjava.sql.SQLException;
  4.  
  5. public class SQLServerConnException extends SQLException {
  6.    public SQLServerConnException(String reason, String SQLState, int vendorCode) {
  7.       super(reason, SQLState, vendorCode);
  8.    }
  9.  
  10.    public SQLServerConnException(String reason, String SQLState) {
  11.       super(reason, SQLState);
  12.    }
  13.  
  14.    public SQLServerConnException(String reason) {
  15.       super(reason);
  16.    }
  17.  
  18.    public SQLServerConnException() {
  19.       super("Lost connection to dbANYWHERE server.");
  20.    }
  21. }
  22.